home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / prog / blitzfaq / faqlists / conwindow.txt < prev    next >
Encoding:
Text File  |  1996-09-05  |  191 b   |  13 lines

  1. ; open a CON: window
  2. If OpenFile(0,"CON:0/0/100/100")
  3.   ; Window opened, direct output to it
  4.   FileOutput 0
  5.  
  6.   For a.w = 0 To 1000
  7.     NPrint a
  8.   Next a
  9.  
  10.   ; Close Window
  11.   CloseFile 0
  12. EndIf
  13.